home *** CD-ROM | disk | FTP | other *** search
/ Aminet 5 / Aminet 5 - March 1995.iso / Aminet / util / cli / man379.lha / install.sh < prev    next >
Text File  |  1995-02-04  |  1KB  |  50 lines

  1.  
  2. ; installation script for The Manual System by ben kennedy (03 feb 95)
  3. ;
  4. ; pretty cheap, yes, I know -- edit this accordingly, or better yet,
  5. ; install it manually (no pun intended)
  6. ;
  7. ; by the way, I hate AmigaDOS scripts; if someone has a decent sh-type
  8. ; interpreter (small) I'd love to hear from you!
  9.  
  10. alias mkdir makedir
  11. alias cp copy
  12.  
  13. echo "This is a very cheap script -- MAKE SURE you read it!"
  14. ask "wanna go on?"
  15. if not warn
  16.     quit
  17. endif
  18.  
  19. echo "*NCopying man pages to sys:man/"
  20. mkdir sys:man
  21. cp man/#? sys:man all clone
  22.  
  23. echo "Adding a line to s:user-startup"
  24. echo >>s:user-startup "*N; following is for the MAN system"
  25. echo >>s:user-startup "assign MAN: sys:man/*N"
  26. assign MAN: sys:man/
  27.  
  28. ask "Install the utils in C: (else do yourself)?"
  29. if warn
  30.     echo "okay, doing so..."
  31.     cp bin/#? c: clone
  32. else
  33.     echo "not done then"
  34. endif
  35.  
  36. ask "Make all the SAS/C 6.50 man pages now (do you have half a MB free)?"
  37. if warn
  38.     echo "okay, letting her rip..."
  39.     mkdir >nil: man:man3
  40.     bin/guide2man sc:help/sc_lib.guide man:man3/
  41. else
  42.     echo "not done then"
  43. endif
  44.  
  45. echo "that's about it; type 'man <prog>' for more info on one of the utils."
  46. echo "All the specific info are in there man pages!!*N*NHave fun!!!*N"
  47.  
  48. ; that's it
  49.  
  50.